// // Copyright (c) 2009 All Right Reserved // // vl // // 2009-01-01 // Contains ... using JetBrains.Annotations; namespace LargoCommon.Music { /// /// Instrument Genus. /// public enum InstrumentGenus { /// /// Instrument Genus. /// None = 0, /// /// Instrument Genus. /// [UsedImplicitly] Rhythmical = 1, /// /// Instrument Genus. /// Melodical = 2 } }